home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950929-19951130 / 000361_news@columbia.edu_Wed Nov 8 02:10:42 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA07887
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Sat, 11 Nov 1995 12:59:03 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id MAA18558 for kermit.misc@watsun; Sat, 11 Nov 1995 12:59:01 -0500
  4. Path: news.columbia.edu!panix!tinman.dev.prodigy.com!prodigy.com!uunet!in1.uu.net!newsfeed.internetmci.com!gatech2!pirates!cssun.mathcs.emory.edu!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit script crashing
  8. Message-Id: <1995Nov8.081043.66280@cc.usu.edu>
  9. Date: 8 Nov 95 08:10:42 MDT
  10. References: <mip.11.00150CA8@mphd1.novell.leeds.ac.uk>
  11. Organization: Utah State University
  12. Lines: 32
  13. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14.  
  15. In article <mip.11.00150CA8@mphd1.novell.leeds.ac.uk>, mip@mphd1.novell.leeds.ac.uk (Martin Plumb) writes:
  16. > I have written a Kermit script which runs on a PC and automatically enters 
  17. > data into a database running on an IBM RS6000 computer.
  18. > Everything works as I would expect until the end when the script tries to 
  19. > send the appropriate sequences to log off from the RS6000.  At that point it 
  20. > puts ^O on the screen and apparently crashes. 
  21. > Further investigation revealed that it doesn't crash - instead, it comes out 
  22. > of the script and into connect mode where I seem to have to type CTRL N 
  23. > and <Return> before it will talk again.
  24. > The root cause of the problem appears to be the sequence:-
  25. > ESC [ 63 ; 1 " p
  26. > which is sent by the RS6000.  As far as we can establish, that is supposed to 
  27. > select a VT mode and perform a soft reset.
  28.  
  29.     Scripts do NOT run in Connect mode, the terminal emulator runs only
  30. in Connect mode. The above control sequence is passed to DOS by scripts
  31. and that is the agent becoming confused by it. ANSI.SYS does not qualify
  32. as even a poor VT100 emulator let alone a sophisticated VT320.
  33.     Joe D.
  34.  
  35. > I tried setting TERM to a non-Ansi type (eg VT52) just before the 
  36. > sequence was due to arrive but it didn't solve the problem.
  37. > Incidentally, if I go through the whole procedure in connect mode, Kermit is 
  38. > quite happy!
  39. > Does anyone have any ideas?
  40. > Martin Plumb